<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Word Guess Game</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="wrapper">
<h1>Word Guess</h1>
<!-- <h2>Vanilla JavaScript Hangman Game</h2> -->
<p>Click on the alphabet below to guess the word, or click hint For Help. </p>
</div>
<div class="wrapper">
<div id="buttons">
</div>
<p id="catagoryName"></p>
<div id="hold">
</div>
<p id="mylives"></p>
<p id="clue">Clue -</p>
<canvas id="stickman">This Text will show if the Browser does NOT support HTML5 Canvas tag</canvas>
<div class="container">
<button id="hint">Hint</button>
<button id="reset">Play again</button>
</div>
</div>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>